#include #include #include using namespace std; //complete the folling program to copy the contents of one //text file into another void copyFile(string inputFileName, string outputFileName) { //declare file handles name them something like //fin and fout. These should be of type //ifstream and ofstream //open input file //open output file //loop and read input one line or char at a time until the end //of file is reached //write the line or char to output //close files } //be sure to ask the user for the filenames void main() { string inputFileName; string outputFileName; //Todo: ask user for input file names copyFile(inputFileName,outputFileName); }